home *** CD-ROM | disk | FTP | other *** search
/ Best of The Best 5: Deep Tush 2 / Best of the Best - Volume 5 - Deep Tush 2.iso / mac / TUSH8.DIR / 00115_Script_115 < prev    next >
Text File  |  1994-11-30  |  637b  |  25 lines

  1. on volUp
  2.   if the SoundLevel = 7 then exit
  3.   set the SoundLevel to the SoundLevel + 1 
  4. end volUp
  5.  
  6. on volDn
  7.   if the SoundLevel = 0 then exit
  8.   set the SoundLevel to the SoundLevel - 1 
  9. end volDn
  10.  
  11. on butns 
  12.   global action,PauseState,auto
  13.   set chan=the clickon
  14.   set button=the name of cast(the castnum of sprite the clickon)
  15.   set upbut=button
  16.   set len=(the number of chars in button)     
  17.   put "C" into char len of button    
  18.   set the castnum of sprite chan to the number of cast button 
  19.   updatestage
  20.   repeat while the stillDown
  21.     if rollover (chan) = false then exit 
  22.   end repeat
  23.   do action
  24. end butns
  25.